home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / src / fs / fs.h < prev    next >
C/C++ Source or Header  |  1990-07-23  |  635b  |  22 lines

  1. /* This is the master header for fs.  It includes some other files
  2.  * and defines the principal constants.
  3.  */
  4. #define _POSIX_SOURCE      1    /* tell headers to include POSIX stuff */
  5. #define _MINIX             1    /* tell headers to include MINIX stuff */
  6. #define _SYSTEM            1    /* tell headers that this is the kernel */
  7.  
  8. /* The following are so basic, all the *.c files get them automatically. */
  9. #include <minix/config.h>    /* MUST be first */
  10. #include <minix/const.h>
  11. #include <minix/type.h>
  12.  
  13. #include <sys/types.h>
  14. #include <limits.h>
  15. #include <errno.h>
  16.  
  17. #include "const.h"
  18. #include "type.h"
  19. #include "proto.h"
  20. #include "glo.h"
  21.  
  22.